home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / remind1.rea < prev    next >
Text File  |  1995-09-04  |  7KB  |  162 lines

  1. Short:    Never forget an important event again.
  2. Author:   rambridg@encore.com
  3. Uploader: rambridg@encore.com
  4. Type:     util/cdity
  5.  
  6. A useful and simple commodity for remembering important dates.
  7. Features:
  8.   - Fully customisable startup
  9.   - Very easy to install
  10.   - Can be used without Battery backup clock
  11.   - Easy to understand and use straight away
  12.   - Future events pre-warning
  13.   - Amigaguide documents
  14.   - History of past events (history length definable)
  15.   - Different classes of events 
  16.     Once       - The message appears once and thats it.
  17.     Persistant - The message appears on the set day and then every 
  18.              day after that until you actually remove it.
  19.     Annual       - The message appears every year on the same date.
  20.      Weekly       - The message appears every week on the same day.
  21.     Monthly       - The message appears every month on the same date.
  22.     Birthday   - The message appears annually with a set pre-warning.
  23.     Relative   - Select the day in every month,
  24.             e.g. 3rd thursday every month,
  25.                  Last monday every month,
  26.     Relative Annual - Select the day of the month every year,
  27.             e.g. 4th Thursday in November
  28.   - Full OS 2.0 GadTools interface
  29.   - Hotkey user definable
  30.   - Completely hidden when not in use
  31.   - Each message can have a time attached, and an alarm 24hour & AM/PM format
  32.   - Font adaptive
  33.   - Custom sizeable
  34.   - Execute external command on message arrival.
  35.   - Can use on any screen format
  36.   - Requires workbench 2.0+
  37.   - Display week/month/year to view, and print in calender format
  38.  
  39. $HIS
  40. ;
  41. ;   Version 1.0 - 28th May 1994
  42. ;     Initial prototype. Badly coded and eventually discarded
  43. ;
  44. ;   Version 1.1 - 10th June 1994
  45. ;     Redesigned project. 
  46. ;     Split main window into seperate windows
  47. ;
  48. ;   Version 1.11- 27th June 1994
  49. ;     - The year number gadget in "Add New Note" always returned 0, see new.c
  50. ;     - Added the Amend function.
  51. ;     - Added comfirm quit from Double run of Commodity
  52. ;
  53. ;   Version 1.2 - 5th July 1994
  54. ;     - Prenotes can now be added to all types of notes.
  55. ;     - Amend function was re-written making it now code efficient and
  56. ;       also can be activated by double clicking on a note
  57. ;     - Prenotes are now "attached" to the parent note, so when the parent
  58. ;       note is amended/deleted so are the prenotes.
  59. ;     - New note type "Relative" added. (See documents)
  60. ;     - Some memory was not being returned to the system for some "Previous"
  61. ;       notes. Now fixed.
  62. ;     - A previous note is now not created when a prenote expires.
  63. ;     - A space was added in the prenote between the date and the note text!
  64. ;     - A lot of code was re-written to be more efficient and cleaner! If you
  65. ;       could see the source code it is now much clearer, (less headaches for
  66. ;       me)
  67. ;     - Changing the period for the Within list made all deleted messages
  68. ;       reappear. Now fixed.
  69. ;     - The Freeze window until ready part never worked. Strange, it used to.
  70. ;     - Any of the prefs options could be set to a negative number. This used
  71. ;       to cause a lot of problems. Now fixed.
  72. ;     - If the prefs filename was set to blank then the prefs would be loaded
  73. ;       incorrectly the next time, and the data file would go walk about.
  74. ;
  75. ;  Version 1.3 - 15th July 1994
  76. ;     - Added font adaptability. 
  77. ;     - Included a size gadget. (Not as simple as it seems!)
  78. ;     - The window size is now saved with a preference save.
  79. ;     - Added a time feature. Each message can now be time stamped.
  80. ;     - Messages for today can be displayed individually on startup.
  81. ;
  82. ;  Version 1.31 - 20th July 1994
  83. ;     - Changing the type of the note in Create/Amend used to erase Prenote
  84. ;       value currently stored. Now it doesn't.
  85. ;     - The Create/Amend window has been rearranged.
  86. ;     - Added the execute command option for a message.
  87. ;
  88. ;  Version 1.32 - 26th July 1994
  89. ;     -  Using NTSC Hi-res laced screens with certain system fonts gave
  90. ;        some trouble and Remind couldn't create the gadgets in the window.
  91. ;        This has now been fixed.
  92. ;     -  In some resolutions the Create note screen had some gadgets touching.
  93. ;        These have been slightly moved.
  94. ;     -  The time format can be selected as 24hour or am/pm
  95. ;     -  The messages are now ordered in time of day as well as date.
  96. ;     -  Linked with utility.library for slightly smaller and faster code
  97. ;     -  External commands now executed with dos.library/Execute() for better
  98. ;        compatability.
  99. ;
  100. ;
  101. ;  Version 1.4 - 15th August 1994
  102. ;     - The minimum size of the window has been reduced. So now the 
  103. ;       main window can become smaller.
  104. ;     - Yet more problems with Resize and Fonts solved.
  105. ;     - Midnight was being shown as 12:00PM!
  106. ;     - Todays date and time have been added to the main window.
  107. ;     - Added date and time to todays messages.
  108. ;     - Added option to ignore all messages for today on startup.
  109. ;     - Midnight support has now been added. If Remind is running and 
  110. ;       midnight occurrs the display is changed and the current database
  111. ;       is saved indicating use of Remind for the next day. The 
  112. ;       implementation is a bit rough and improvement suggestions would
  113. ;       be appriciated.
  114. ;     - The timer routines have been rewritten, the old versions have caused
  115. ;       crashing on my system.
  116. ;     - The slider values for the day/month sliders in Add/Amend note now 
  117. ;       have the slider values displayed for easy reference.
  118. ;     - Persistant notes can now be "Finished" by shift+double click on the
  119. ;
  120. ;
  121. ;  Version 1.41 - 19th September 1994
  122. ;     - The relative week number couldn't be amended.
  123. ;       Now fixed.
  124. ;     - Messages with commands can now disable the window
  125. ;       which opens with the message.
  126. ;     - Save always on exit option added to preferences.
  127. ;
  128. ;
  129. ;  Version 1.5B - 21st March 1995
  130. ;     - BETA release
  131. ;     - Remind's screen now pops to front when hot key is pressed.
  132. ;     - Add/Amend window changed to a more compact version.
  133. ;     - Prefs window changed to a more compact version.
  134. ;     - Weekly/Monthly/Yearly View feature added.
  135. ;     - Email address changed to rambridg@encore.com!
  136. ;
  137. ;
  138. ;  Version 1.5 - 17th May 1995
  139. ;     - Fixed problem of adding messages after midnight.
  140. ;     - The view list gadgets were not initialised correctly.
  141. ;     - Selecting view list dates from=to caused a program crash
  142. ;     - In view creation notes that occur on the "to" day could cause a crash.
  143. ;
  144. ;
  145. ;  Version 1.51 - 22nd June 1995
  146. ;     - Added Annual Relative feature
  147. ;     - Added menus to new/amend window
  148. ;     - The sliders now update the values in real time.
  149. ;
  150. ;
  151. ;  Version 1.52 - 30th August 1995
  152. ;     - If todays messages were displayed and then remind was quit the
  153. ;       messages would on the next day complain that they were missed.
  154. ;     - Prenote messages kept being flagged as missed until the actual note
  155. ;       was shown.
  156. ;     - Expired messages now have a copy added to the previous window.
  157. ;     - After midnight Todays messages are shown if any. (Untested!)
  158. ;     - Added print to file option in preferences for view list
  159. ;     - View list printing now includes times.
  160. ;
  161. ;
  162.